home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 2: Applications / Linux Cubed Series 2 - Applications.iso / editors / emacs / xemacs / xemacs-1.004 / xemacs-1 / xemacs-19.13 / src / s / unipl5-0.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-08-04  |  3.2 KB  |  110 lines

  1. /* Definitions file for GNU Emacs running on UniSoft's UniPlus 5.0
  2.    Support for this system is not finished; don't expect this to work.
  3.    Copyright (C) 1985, 1986 Free Software Foundation, Inc.
  4.  
  5. This file is part of GNU Emacs.
  6.  
  7. GNU Emacs is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 2, or (at your option)
  10. any later version.
  11.  
  12. GNU Emacs is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with GNU Emacs; see the file COPYING.  If not, write to
  19. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  20.  
  21. /* Synched up with: FSF 19.29. */
  22.  
  23. /*
  24.  *    Define symbols to identify the version of Unix this is.
  25.  *    Define all the symbols that apply correctly.
  26.  */
  27.  
  28. #define USG                /* System III, System V, etc */
  29.  
  30. #define USG5
  31.  
  32. #define UNIPLUS
  33.  
  34. /* SYSTEM_TYPE should indicate the kind of system you are using.
  35.  It sets the Lisp variable system-type.  */
  36.  
  37. #define SYSTEM_TYPE "unisoft-unix"
  38.  
  39. /* Letter to use in finding device name of first pty,
  40.   if system supports pty's.  'a' means it is /dev/ptya0  */
  41.  
  42. /* #define FIRST_PTY_LETTER 'a' */
  43.  
  44. /*
  45.  *    Define HAVE_PTYS if the system supports pty devices.
  46.  */
  47.  
  48. /* #define HAVE_PTYS */
  49.  
  50. /* Define this macro if system defines a type `union wait'.  */
  51.  
  52. #define HAVE_UNION_WAIT
  53.  
  54. #define NO_SUBPROCESSES
  55.  
  56. /* If your system uses COFF (Common Object File Format) then define the
  57.    preprocessor symbol "COFF". */
  58.  
  59. /* #define COFF */
  60.  
  61. /* define MAIL_USE_FLOCK if the mailer uses flock
  62.    to interlock access to /usr/spool/mail/$USER.
  63.    The alternative is that a lock file named
  64.    /usr/spool/mail/$USER.lock.  */
  65.  
  66. /* #define MAIL_USE_FLOCK */
  67.  
  68. /* Define SHORTNAMES if the C compiler can distinguish only
  69.    short names.  It means that the stuff in ../shortnames
  70.    must be run to convert the long names to short ones.
  71.  
  72.    Some USG systems support long names.
  73.    If yours is one, DO NOT change this file!
  74.    Do #undef SHORTNAMES in the m- file or in config.h.  */
  75.  
  76. #define SHORTNAMES
  77.  
  78. /* The file containing the kernel's symbol table is called /unix.  */
  79.  
  80. #define KERNEL_FILE "/unix"
  81.  
  82. /* The symbol in the kernel where the load average is found
  83.    is named avenrun.  */
  84.  
  85. #define LDAV_SYMBOL "avenrun"
  86.  
  87. /* Special hacks needed to make Emacs run on this system.  */
  88.  
  89. /* On USG systems the system calls are interruptible by signals
  90.  that the user program has elected to catch.  Thus the system call
  91.  must be retried in these cases.  To handle this without massive
  92.  changes in the source code, we remap the standard system call names
  93.  to names for our own functions in sysdep.c that do the system call
  94.  with retries. */
  95.  
  96. #define INTERRUPTIBLE_OPEN
  97. #define INTERRUPTIBLE_IO
  98.  
  99. /* Compiler bug bites when default ADDR_CORRECT is used.  */
  100.  
  101. #define ADDR_CORRECT(x) (x)
  102.  
  103. /* Special library needed for linking for Uniplus */
  104.  
  105. #define LIBS_SYSTEM -lnet
  106.  
  107. /* A system-specific loader switch is needed.  */
  108.  
  109. #define LD_SWITCH_SYSTEM -N -L/lib/libg /usr/lib/unshared.ld
  110.